Find the best coffee shops in and around 2 Holt Street Surry Hills
--> Docker
Programming languges user:
--> Python
Presentation Layer / Development Env:
We (DnA team) go for coffee everyday in the morning to the cafe short listed. We take photo snap at the cafe. After reaching office, we build a survey question per iteration and circulate to the people who had coffee at that day. The data is captured in https://freeonlinesurveys.com/ and we get it when we do data analytics.
import matplotlib.image as mpimg
plt.figure(figsize=(100,100))
img=mpimg.imread('data/maps_coffeeshops.png')
imgplot = plt.imshow(img)
df_plot.sort_values("Score")\
.iloc[:,:6]\
.plot(x='shop_address',kind='bar', stacked=True, figsize=(12,6), rot=65)
plt
plt.figure(figsize=(20,10))
parallel_coordinates(df_plot[['shop_name', 'Taste_Quantity', 'Price', 'Service_Speed','Atmosphere_Friendliness', 'Walking_Distance','Walking_Distance']],
"shop_name"
)
plt.show()